
 
 D C . c s s ( s t r i n g P r o p e r t y O r K e y V a l u e M a p ,   s t r i n g O r N u m b e r V a l u e ,   b o o l S a v e ) 
 
 
 
 D e s c r i p t i o n :   S e t s   o n e   o r   m o r e   s t y l e   p r o p e r t i e s   o n   D C . w r a p p e r ,   o r   r e t u r n s   t h e   c o m p u t e d   v a l u e   o f   a   s t y l e   p r o p e r t y   o n   D C . w r a p p e r . 
 
 
 
 R e t u r n s :   D C   O b j e c t ,   o r   t h e   s p e c i f i e d   s t y l e   p r o p e r t y   v a l u e . 
 
 
 
 N o t e :   W h e n   b o o l S a v e   i s   s e t   t o   t r u e ,   t h e   n e w   p r o p e r t i e s   w i l l   b e   m e r g e d   w i t h   D C . s t y l e   a n d   a p p l i e d   e v e r y   t i m e   t h e   D C   o b j e c t   i s   o p e n e d   a f t e r   t h a t   p o i n t ,   u n l e s s   t h e s e   t o o   a r e   o v e r w r i t t e n . 
 
 
 
 E x a m p l e : 
 
 
 
 / /   G e t   a   s t y l e   p r o p e r t y   v a l u e 
 
 v a r   p o s i t i o n P r o p   =   D C . c s s ( " p o s i t i o n " ) ; 
 
 
 
 / /   S e t   o n e   s t y l e   p r o p e r t y   o n   D C . w r a p p e r 
 
 D C . c s s ( " p o s i t i o n " ,   " a b s o l u t e " ) ; 
 
 
 
 / /   S e t   o n e   s t y l e   p r o p e r t y   o n   D C . w r a p p e r ,   a n d   s a v e   i t   b y   m e r g i n g   w i t h   D C . s t y l e . 
 
 D C . c s s ( " p o s i t i o n " ,   " a b s o l u t e " ,   t r u e ) ; 
 
 
 
 / /   S e t   m u l t i p l e   s t y l e   p r o p e r t i e s   o n   D C . w r a p p e r . 
 
 D C . c s s ( { 
 
     p o s i t i o n :   " a b s o l u t e " , 
 
     p a d d i n g :   " 5 p x   7 p x " , 
 
     b a c k g r o u n d C o l o r :   " y e l l o w " , 
 
     c o l o r :   " r e d " 
 
 } ) ; 
 
 
 
 / /   S e t   m u l t i p l e   s t y l e   p r o p e r t i e s   o n   D C . w r a p p e r ,   a n d   s a v e   t h e m   w i t h i n   D C . s t y l e . 
 
 D C . c s s ( { 
 
     p o s i t i o n :   " a b s o l u t e " , 
 
     p a d d i n g :   " 5 p x   7 p x " , 
 
     b a c k g r o u n d C o l o r :   " y e l l o w " , 
 
     c o l o r :   " r e d " 
 
 } ,   t r u e ) ; 
 
 